* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1e1e1e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    overflow: hidden;
}

#loading-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: #1e1e1e;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    animation: fadeIn 1.5s ease-in-out;
}


.progress-container {
    width: 60%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    width: 0;
    height: 100%;
    background: #00ffcc;
    animation: load 3s linear forwards;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes load {
    0% { width: 0; }
    100% { width: 100%; }
}
